home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1997 April / EnigmA AMIGA RUN 17 (1997)(G.R. Edizioni)(IT)[!][issue 1997-04][EAR-CD].iso / EARCD / util / wb / RunBar31.lha / RunBar / Develop / include / clib / runbar_protos.h
C/C++ Source or Header  |  1996-11-23  |  1KB  |  46 lines

  1. #ifndef CLIB_RUNBAR_PROTOS_H
  2. #define CLIB_RUNBAR_PROTOS_H
  3.  
  4. /*
  5. **    $VER: RunBar_protos.h 1.0 (24.11.96)
  6. **    Includes Release 1.0
  7. **
  8. **    RunBar.library interface structures and definitions.
  9. **
  10. **    (C) Copyright 1996 Sergej Kravcenko
  11. **    All Rights Reserved
  12. */
  13.  
  14. /*****************************************************************************/
  15.  
  16.  
  17. #ifndef EXEC_TYPES_H
  18. #include <exec/types.h>
  19. #endif
  20.  
  21. #ifndef EXEC_TASKS_H
  22. #include <exec/tasks.h>
  23. #endif
  24.  
  25. #ifndef EXEC_PORTS_H
  26. #include <exec/ports.h>
  27. #endif
  28.  
  29. #ifndef INTUITION_INTUITION_H
  30. #include <intuition/intuition.h>
  31. #endif
  32.  
  33. #ifndef LIBRARIES_RUNBAR_H
  34. #include <libraries/runbar.h>
  35. #endif
  36.  
  37. ULONG           RB_AddTask(struct Task *task,struct SBItem *menu,
  38.                            struct Image *image,struct RBInfo *info,
  39.                            struct MsgPort **port);
  40. ULONG           RB_RemoveTask(struct Task *task);
  41. void            RB_Edit(struct Task *task,struct SBItem *menu,
  42.                         struct Image *image);
  43.                         
  44. #endif /* CLIB_RUNBAR_PROTOS_H */
  45.  
  46.